home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / intvue14.zip / INTERVUE.DOC next >
Text File  |  1993-01-20  |  5KB  |  103 lines

  1.  
  2.                                INTERVUE V1.4
  3.                                January, 1993
  4.                       Copyright Hackensack, 1992, 1993
  5.                               
  6.  
  7.   INTERVUE is a viewer for the Interrupt List maintained by Ralf Brown.  
  8.   The program is Public Domain Software and may be freely copied and 
  9.   distributed.  The Interrupt List is avaliable for downloading from
  10.   CompuServe and numerous other BBS's.  The files are named INTnnA.ZIP,
  11.   INTnnB.ZIP, and INTnnC.ZIP (nn = current release no.).  
  12.   
  13.   INTERVUE is provided as a 'no frills' alternative to the commercial 
  14.   Interrupt List viewers.
  15.  
  16.   Version 1.4 contains a revised search alogrithm for the List entries
  17.   and several bug fixes.
  18.  
  19.   INTERVUE is designed to be backward and foward compatible with the 
  20.   Interrupt List releases, subject to the following constraints: 
  21.  
  22.         The Summary File format must be compatible with release 32.
  23.         The individual List files size must not exceed 6 segments (393Kb).
  24.         The number of List files must not exceed 12.
  25.         The INTERRUP.A file header format must be consistent with release 32.
  26.         
  27.   To install INTERVUE, first copy the Interrupt List files, INTnnA.ZIP and 
  28.   INTnnB.ZIP, to a subdirectory on the fixed disk and UNZIP them.  Next, use 
  29.   INTPRINT to create the Summary File (INTERRUP.SUM) with the following 
  30.   command:
  31.  
  32.         INTPRINT -sINTERRUP.SUM -m -i INTERRUP.A nul
  33.  
  34.   Copy INTERVUE to the Interrupt List directory and execute the program.  
  35.   The INTERRUP.SUM file serves as the menu for accessing the function 
  36.   descriptions contained in the Interrupt List files.  To run INTERVUE from 
  37.   a search path, add the following command to the AUTOEXEC.BAT file:
  38.  
  39.         set intervue = drv:\path
  40.  
  41.   The 'drv:\path' is the drive and path where the Interrupt List files are
  42.   located.  INTERVUE may then be placed in any active search path.
  43.  
  44.   The following keys are active within the INTERVUE text display window:
  45.   Home, End, PageUp, PageDn, UpArrow, DnArrow, Esc, F1, F2, F3, & Enter.
  46.  
  47.   INTERVUE is written in 8086 assembler, uses conventional memory (640Kb)
  48.   only, compatible with DOS 2.0 & >, RSIS compliant (DESQview aware), and 
  49.   is compatible with both mono and color video.  Requires 3Mb disk space
  50.   for the Interrupt List files (unzipped).  INTERVUE has no command line
  51.   parameters, does not use a setup file, and makes no disk writes.
  52.  
  53.                           Search Alogrithm:
  54.  
  55.   At initialization, INTERRUP.A is opened and the beginning text read to 
  56.   build an array mapping Int & Fct to the INTERRUP file extension.  Next, 
  57.   INTERRUP.SUM is read into the file buffer and displayed as a menu.  When 
  58.   a function is selected (Enter), the List file with the Int & Fct is read 
  59.   into the buffer and searched for a match.
  60.  
  61.   The search string is formed from the Summary file entry by re-creating
  62.   the List file description line (three format variations).  The List
  63.   file description line does not contain the Fct & Sub, so a verify string 
  64.   is created to check the List file dashed line above the description for 
  65.   Int, Fct & Sub.  A hit is returned from verify if either a match is 
  66.   found, or if Int, Fct & Sub are absent from the dashed line above the 
  67.   description (some with Int only are missing).  The verify compare allows 
  68.   List file formatting fluctuations of + or - 5 bytes.  
  69.  
  70.   The only observed search problem occurs from identical entries (Int, Fct,
  71.   Sub, & description) in the Summary file.  The search will always find the 
  72.   first of these entries in the List file.  Use of F3 (next match) will 
  73.   reveal all of the subsequent identical description entries in the List file, 
  74.   which will show unique values in BX or other registers.  With the 'feature' 
  75.   documented, and with awareness of how the search works, I consider this
  76.   to be a minor inconvience. 
  77.    
  78.   The List file is always searched sequentially from the beginning in order 
  79.   to count the newlines and display the tally.  No pointers are used with  
  80.   the List files, and no binary search techniques are used.  The file buffer
  81.   segment offset is incremented by one following each byte compare, and
  82.   tested for zero to identify segment boundaries.  The aux timer vector is
  83.   unhooked/hooked and start/end crit section (2F 16 81-82 & 15 DE 1C-1B) is 
  84.   called for file reads and the search.  The file reads are 8000h, with a 
  85.   compare of AX, CX for eof.  
  86.  
  87.   Memory is released, retaining 16kb for the program, and 6 segs allocated  
  88.   for the file buffer.  Errors trapped are mem allocation, file too big, file 
  89.   not found, and crit.
  90.   
  91.  
  92.   The INTERVUE program is provided by Hackensack, the publisher of INTRCPT, 
  93.   a Windows\Dos Interrupt trapper and real-time debugger.  For information 
  94.   on INTRCPT and discounts avaliable to Interrupt List users, contact 
  95.   Hackensack, PO Box 181386, Arlington, TX  76096 or CompuServe 76570,2752.
  96.  
  97.   Please report any INTERVUE bugs or problems, and upgrade suggestions.
  98.  
  99.                                       Thanks,
  100.                                       Bob Williamson
  101.                                       CIS 76570,2752
  102.                 
  103.